home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / internet / net commander 1.0 / ISP / SCRPTLST / DELTANET.CMD < prev    next >
Encoding:
Text File  |  1996-02-08  |  1.4 KB  |  59 lines

  1. #***********************************************************
  2. #
  3. # LOGIN SCRIPT for DELTA INTERNET SERVICES
  4. #  (Mar. 16, 1995)
  5. #
  6. #-----------------------------------------------------------
  7. # retrieve strings from ini file to establish connection
  8. #
  9. load $modemsetup
  10. load $number
  11. load $username
  12. load $userpwd
  13. load $protocol
  14. #
  15. #-----------------------------------------------------------
  16. # reset the modem; send the modem intialization string;
  17. # dial Delta
  18. #
  19. output "atz"\13
  20. input 60 OK\n
  21. #
  22. #output "at"$modemsetup\13
  23. #input 60 OK\n
  24. #
  25. output "atdt"$number\13
  26. #input 60 \n
  27. #
  28. #------------------------------------------------------------
  29. # wait for the username prompt > enter username
  30. #
  31. input 120 "login"
  32. output $username\13
  33. #
  34. #------------------------------------------------------------
  35. # wait for password prompt > enter password
  36. #
  37. input 120 "word:"
  38. output $userpwd\13
  39. #
  40. #------------------------------------------------------------
  41. # wait for user's IP address > set as user's IP
  42. #
  43. # If Your Account Uses a Dynamic IP Address, Remove the '#'
  44. # In Front of the Two Commands Immediately Below.
  45. #
  46. #input 120 "IPADDRESS:"
  47. #address 120
  48. #
  49. #------------------------------------------------------------
  50. # wait until PPP or SLIP dialog is started
  51. #  
  52. input 120 $protocol
  53. #
  54. #------------------------------------------------------------
  55. # you are now connected directly to the Internet!
  56. #
  57. end
  58.  
  59.